const github.com/klauspost/compress/huff0.maxSymbolValue
10 uses
github.com/klauspost/compress/huff0 (current package)
compress.go#L460: if cap(s.cTable) < maxSymbolValue+1 {
compress.go#L461: s.cTable = make([]cTableEntry, s.symbolLen, maxSymbolValue+1)
decompress.go#L135: if cap(cTable) < maxSymbolValue+1 {
decompress.go#L136: cTable = make([]cTableEntry, 0, maxSymbolValue+1)
decompress.go#L138: cTable = cTable[:maxSymbolValue+1]
huff0.go#L17: maxSymbolValue = 255
huff0.go#L65: count [maxSymbolValue + 1]uint32
huff0.go#L121: huffWeight [maxSymbolValue + 1]byte
huff0.go#L127: s.prevTable = make(cTable, 0, maxSymbolValue+1)
huff0.go#L142: s.MaxSymbolValue = maxSymbolValue
![]() |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |